Hệ thống quản lý phòng khám trực tuyến bằng PHP

1 <?php
2     
/*
3      * You can
add custom links in the home page by appending them here ...
4      * The format
for each link is:
5         $homeLinks[] = array(
6             
'url' => 'path/to/link',
7             
'title' => 'Link title',
8             
'description' => 'Link text',
9             
'groups' => array('group1', 'group2'), // groups allowed to see this link, use '*' if you want to show the link to all groups
10             
'grid_column_classes' => '', // optional CSS classes to apply to link block. See: http://getbootstrap.com/css/#grid
11             
'panel_classes' => '', // optional CSS classes to apply to panel. See: http://getbootstrap.com/components/#panels
12             
'link_classes' => '', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons
13             
'icon' => 'path/to/icon' // optional icon to use with the link
14         );
15      */

16
17
18 $homeLinks[] = array(
19             
'url' => 'hooks/calendar.php',
20             
'title' => 'Calendar',
21             
'description' => 'show all events that you have',
22             
'groups' => array('*'), // groups allowed to see this link, use '*' if you want to show the link to all groups
23             
'grid_column_classes' => 'col-md-6 col-lg-6', // optional CSS classes to apply to link block. See: http://getbootstrap.com/css/#grid
24             
'panel_classes' => 'panel-success', // optional CSS classes to apply to panel. See: http://getbootstrap.com/components/#panels
25             
'link_classes' => 'btn-success', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons
26             
'icon' => '' // optional icon to use with the link
27         );
28
29
30 $homeLinks[] = array(
31             
'url' => 'hooks/reports.php',
32             
'title' => 'Reports',
33             
'description' => 'Smart Reports for your work'
34                           .
' ',
35             
'groups' => array('*'), // groups allowed to see this link, use '*' if you want to show the link to all groups
36             
'grid_column_classes' => 'col-md-6 col-lg-6', // optional CSS classes to apply to link block. See: http://getbootstrap.com/css/#grid
37             
'panel_classes' => 'panel-success', // optional CSS classes to apply to panel. See: http://getbootstrap.com/components/#panels
38             
'link_classes' => 'btn-success', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons
39             
'icon' => '' // optional icon to use with the link
40         );


Gõ tìm kiếm nhanh...